home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK2.toast / Development Kits (Disc 2) / QuickTime™ IC SDK 1.01 / Sample Code / QTICSampleApp / Headers / PascalElim.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-06  |  684 b   |  26 lines  |  [TEXT/MPS ]

  1. /*
  2. **    The PascalElim changes to MoreFiles source and header files, along with
  3. **    this file, let you disable Pascal calling conventions in all MoreFiles
  4. **    routines except for system callbacks that require Pascal calling
  5. **    conventions. This will make C programs both smaller and faster.
  6. **
  7. **    Just un-comment "#define __WANTPASCALELIMINATION" in this file to
  8. **    disable Pascal calling conventions
  9. **
  10. **    Changes supplied by Fabrizio Oddone
  11. **
  12. **    File:    PascalElim.h
  13. */
  14.  
  15.  
  16. /*    Un-comment "#define __WANTPASCALELIMINATION" (the following line)
  17. **    to disable Pascal calling conventions.
  18. */
  19. #if 0
  20. #define __WANTPASCALELIMINATION
  21. #endif
  22.  
  23. #ifdef  __WANTPASCALELIMINATION
  24. #define pascal    
  25. #endif
  26.